get content
Retrieve content from TabNews API by providing a username and slug, enabling integration with MCP TabNews for streamlined data fetching and analysis.
Instructions
get content from tabnews api
Input Schema
Name | Required | Description | Default |
---|---|---|---|
slug | Yes | The slug to get the content | |
username | Yes | The username to get the content |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"slug": {
"description": "The slug to get the content",
"type": "string"
},
"username": {
"description": "The username to get the content",
"type": "string"
}
},
"required": [
"username",
"slug"
],
"type": "object"
}